body {
    background-color: rgb(253, 253, 253);
}

.logo img {
    width: 80px;;
    height: 20px;
}

h2 {
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h3 {
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-weight: 300;
}

.reebok {
    margin-left:50px;
    right:120px;
    padding: 22px;
    margin-bottom:40px;
    margin-top: -50px;
}
.card {
    margin-right: 200px;
    top:100px;
}
.container-fluid{
    background-color: #080808
}

.card-container {
    display: flex;
    justify-content: center;
} 

    .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 kolom */
      gap: 25px;
      max-width: 1100px;
      margin: auto;
    }
    .product {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      background: #fff;
      position: relative;
    }
    .product img {
      width: 100%;
      max-width: 200px;
      height: auto;
      margin-bottom: 10px;
    }
    .product h3 {
      font-size: 14px;
      font-weight: normal;
      margin: 8px 0;
    }
    .price {
      font-size: 14px;
      color: #010101;
      margin: 5px 0;
    }

    .price1 {
      font-size: 14px;
      color:#ff1100;
      margin: 5px 0;
    }
    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 13px;
    }
    .discount {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: white;
      padding: 3px 8px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 4px;
    }

.footer {
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .footer-container {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0; /* beri sedikit padding atas & bawah agar tidak terlalu rapat */
  }

  .footer1 h6 {
    font-weight: bold;
    margin-bottom: 15px;
  }

  .footer1 ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
  }

  .footer1 ul li {
    margin-bottom: 10px;
  }

  .footer1 ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }

  .footer1 ul li a:hover {
    text-decoration: underline;
  }